home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
SETUP
/
US
/
CBUILDER
/
DATA.Z
/
DBINPREQ.INT
< prev
next >
Wrap
Text File
|
1997-02-13
|
1KB
|
37 lines
{*******************************************************}
{ }
{ Delphi Visual Component Library }
{ }
{ Copyright (c) 1996 Borland International }
{ }
{*******************************************************}
unit DBInpReq;
{$R-}
interface
uses Windows, Classes, SysUtils, Forms, Controls, StdCtrls, ExtCtrls,
BDE, Dialogs;
type
TInputReqDialog = class(TForm)
OKButton: TButton;
CancelButton: TButton;
InputOptions: TPanel;
NoPromptAgain: TCheckBox;
ErrorHelp: TLabel;
InputMessage: TLabel;
ErrorGroupBox: TPanel;
ErrorGoupBoxSpacer: TPanel;
DescriptionGroupBox: TPanel;
DescriptionGroupBoxSpacer: TPanel;
procedure InputOptionsClick(Sender: TObject);
end;
function InputRequest(var InputReqInfo: CBInputDesc): CBRType;
implementation